home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / c / qtools0.2-src.lha / src / include / libqdisplay.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-11  |  837 b   |  32 lines

  1. #ifndef    LIBQDISPLAY_H
  2. #define    LIBQDISPLAY_H
  3.  
  4. #include "./init.h"
  5.  
  6. /* ============================================================================ */
  7.  
  8. #ifdef    LIBQDISPLAY_CORE
  9. #include "./libqtools.h"
  10. #include "../libqdisplay/3d.h"
  11. #include "../libqdisplay/cache.h"
  12. #include "../libqdisplay/clippoly.h"
  13. #include "../libqdisplay/display.h"
  14. #include "../libqdisplay/draw.h"
  15. #include "../libqdisplay/render.h"
  16. #include "../libqdisplay/surface.h"
  17. #include "../libqdisplay/tables.h"
  18. #include "../libqdisplay/tbsp.h"
  19. #endif
  20.  
  21. #include "./mathlib.h"
  22.  
  23. #define    DISPLAY_TEXTURED    0
  24. #define    DISPLAY_FLAT        1
  25. #define    DISPLAY_WIRE        2
  26.  
  27. bool DisplayBSP(__memBase, char *Title, int width, int height, int depth, int display, bool wait);
  28. bool DisplayPicture(void *pic, char *Title, int width, int height, int depth, bool wait);
  29. void DisplayEnd(void);
  30.  
  31. #endif
  32.